| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | /** |
||
| 24 | class Form { |
||
| 25 | constructor() { |
||
| 26 | window.$ = window.jQuery = $; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Initiate component input |
||
| 30 | */ |
||
| 31 | this.input = new Input(); |
||
| 32 | |||
| 33 | this.select = new Select(); |
||
| 34 | |||
| 35 | this.validation = new Validation(); |
||
| 36 | |||
| 37 | this.wizard = new Wizard(); |
||
| 38 | |||
| 39 | this.upload = new Upload(); |
||
| 40 | |||
| 41 | this.editor = new Editor(); |
||
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 45 | export default new Form; |